home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 351-375 / disk_359 / dice / dice.lzh / include / sys / stat.h < prev    next >
C/C++ Source or Header  |  1990-04-08  |  382b  |  28 lines

  1.  
  2. /*
  3.  *  SYS/STAT.H
  4.  */
  5.  
  6. #ifndef _SYS_STAT_H
  7. #define _SYS_STAT_H
  8.  
  9. #ifndef LIBRARIES_DOS_H
  10. #include <libraries/dos.h>
  11. #endif
  12.  
  13. #define S_IFMT        0xF0000
  14. #define S_IFREG     0x10000
  15. #define S_IFDIR     0x20000
  16. #define S_IFLNK     0x30000
  17. #define S_IFCHR     0x40000
  18. #define S_IFBLK     0x50000
  19.  
  20. struct stat {
  21.     long    st_mode;
  22.     long    st_size;
  23.     long    st_ctime;
  24. };
  25.  
  26. #endif
  27.  
  28.